home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Atari Mega Archive 1
/
Atari Mega Archive - Volume 1.iso
/
gnu
/
gcctest
/
tests05.zoo
/
strerror.c
< prev
next >
Wrap
C/C++ Source or Header
|
1992-03-28
|
317b
|
21 lines
/* from Henry Spencer's stringlib */
#include <string.h>
/*
* strerror - map error number to descriptive string
*
*/
char *
strerror(errnum)
int errnum;
{
extern int sys_nerr;
extern char *sys_errlist[];
if (errnum >= 0 && errnum < sys_nerr)
return(sys_errlist[errnum]);
else
return("unknown error");
}